Click here to Skip to main content
15,887,746 members
Articles / Web Development / ASP.NET
Article

Media Handler

Rate me:
Please Sign up or sign in to vote.
2.50/5 (4 votes)
29 Jan 2008CPOL1 min read 39.4K   999   23   6
You can use Media Handler in your VB.NET applications to encode videos to FLV and perform other processings including posting wartermark on videos, grab single thumbnails from video.
Image 1

Introduction

A free Media Handler class for ASP.NET applications to encode videos to FLV format and perform other processings including posting wartermark on videos, encode / convert videos to flv format, grab single thumbnails from video.

Thanks to "nothingelz" for the example.

Using the code

First download the latest "SHARED" ffmpeg build from here or from here. You need the shared version for watermark function.

Unzip it under your "test" directory: ex c:\inetpub\wwwroot\test\ffmepg

Download the FLVTOOLS form here and unzip in the same way: ex c:\inetpub\wwwroot\test\flvtool.

Now convert your "test" dir in application.

Set the "test" web.config like this:

XML
 <appSettings>
  <add key="PathTHUMBS" value="C:\InetPub\wwwroot\test\Images\Thumbs\"></add>
  <add key="PathFILE" value="C:\InetPub\wwwroot\test\Images\Default\"></add>
  <add key="PathFLV" value="C:\InetPub\wwwroot\test\Images\FLV\"></add>
  <add key="PathFFMPEG" value="C:\InetPub\wwwroot\test\ffmpeg\ffmpeg.exe"></add>
  <add key="PathFFMPEGdir" value="C:\InetPub\wwwroot\test\ffmpeg\"></add>
  <add key="PathFLVTOOL" value="C:\InetPub\wwwroot\test\flvtool\flvtool2.exe"></add>
</appSettings>

Note: create 1 sub dir under test called "Images" and under this 3 sub dirs called "Thumbs" (where the class save the generated thumbails), "Default" (where are saved the uploaded files), "FLV" (where are located the generated flv files).

The usage is very simple:

VB.NET
FLV.Encode(filename, width, height, audio bitrate, audio samling rate)

Encode a file to flv, with specified width and height and audio. The file path is defined by the key "PathFILE". The encoded flv file path is defined by th key PathFLV.

VB.NET
Set_buffering(Encoded_Video_Name)

Call Set_Buffering function to set meta-information to flv video.

VB.NET
Set_watermark(Encoded_Video_Name, imagename)

Is used to post watermark image on video. The imagename must resides in the ffmpeg path.

Get_duration(Encoded_Video_Name)

Get the duration of the flv files.

VB.NET
Grab_image(Encoded_Video_Name, framenumber, imageformat, width, height)

Is used to capture frame in image format from flv video from a given frame number. Recommended image format for grabbing thumbnails are jpg and png. The thumbs are saved in the path "PathTHUMBS"

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) KefaOnLine di Techworld S.r.l.
Italy Italy
VB.NET, C# Developer.
Skills: VB.Net, ASP.Net, SQL 2000/2005.

Comments and Discussions

 
Questionwatermarking in asp.net Pin
Member 1000379529-Jan-14 4:09
Member 1000379529-Jan-14 4:09 
QuestionResolved Error Pin
sridharnetha17-Mar-13 23:56
sridharnetha17-Mar-13 23:56 
QuestionSample Coding Pin
sathya.spidy3-May-11 1:36
sathya.spidy3-May-11 1:36 
GeneralMy vote of 1 Pin
Member 146749310-Jul-09 21:27
Member 146749310-Jul-09 21:27 
GeneralUnable to play video on server Pin
Sujit Gupta2-Aug-08 0:30
Sujit Gupta2-Aug-08 0:30 
GeneralTo get better quality film Pin
davidberlin13-Apr-08 7:35
davidberlin13-Apr-08 7:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.